home *** CD-ROM | disk | FTP | other *** search
-
- Hello...
-
- I have made these files 'public domain' for any programmer or non-
- programmer alike to use as they see fit. Rip the files apart, process
- the files, delete the files, in short, do what you will with them.
-
- The Stuff presented is not new, nor revolutionary but may provide
- some utility to some programmer somewhere. I hope they are usefull
- to you.
-
-
- Brief Descriptions:
-
- YN.ASM
-
- This was intended for a batch (.BAT) file to use as a simple Yes/No
- control reponse to some stupid question.
- EXAMPLE: (In the midst of the batch file tundra)...
- :Q1
- ECHO Do you want to to go There (Y/N)?
- YN
- IF ERRORLEVEL 255 GOTO INVALIDKEY
- IF ERRORLEVEL 2 GOTO THERE
- ECHO You decided not to go ther, that is a no resonse.
- GOTO SOMEWHEREELSE
- :INVALIDKEY
- ECHO Your Resonse Must be Y or N (or y or n)
- GOTO Q1
- :THERE
- ECHO You Decided to go there, that is a yes resonse
- GOTO WHEREVER
- Thus is an example.
-
-
- STRINGS.ASM
-
- This file is a collection of string processing routines. Look at the
- source file to see parameters and what is there. A program example
- calles STRTEST.ASM is also included in the ZIP for a test of strings.
- This example program does not output anything but was used in DEBUG or
- CodeView to test STRINGS.ASM
-
-
- SYSKEY.ASM
-
- This file provides a way to process SysReq keystrokes. As it stands,
- the file is a TSR that prints a stupid message at the top of the screen
- to say that the key was pressed or released (MAKE/BREAK) and is no way
- intended to be a 'real' program, but simply to illustrate the ease of
- customizing your own programs into using the SysReq key on the AT or
- compatable machines. Play with the source.
-
-
- FIXUP.ASM
-
- A file that intended for interface to Turbo Prolog (v1.1 and up) that
- accepts an input string and makes it look nice.
- THUS:
- "the fRuitcake iS vErY MUshY toDay." becomes
- "The Fruitcake Is Very Mushy Today."
-
-
- DOSCALLS.INC
-
- All the Int 21h dos call function (That I know of) which are simple
- Equates for use in any ASM file that uses dos function 21h calls.
-
-
-
- Use these files as you wish. I hope that they are of some use to you
- as they have been for my programming for the past 5 or 6 years.
-
- A final note is that these ASM files were written for use in MASM v5.1
- by Microsoft Corporation and I'm sure with a little work are transferable
- to TASM by Borland Software.
-
- DISCLAIMER: I claim no resonsibility for the use and/or misuse of these
- programs or derivitives therof. You are responsible for their function
- and or misfunction but the writer (me) does state that the original
- unmodified versions of these utilities are devoid of 'viruses' and other
- known maladies of the computer world.
- Microsoft Corporation and Borland International are in no way connected with
- the distibution or manufacture of this software.
-
- Thank you, program away.
- Jovo John Filipovich
- CHANNEL1 BBS
- (^ You can reach me there for questions)
-